home *** CD-ROM | disk | FTP | other *** search
- //
- // Example of Structured If Begin Block
- //
-
- ErrorQuiet %1
- Errorlevel 0
- if not session then open website
- if success then begin
- Log Successful login! Checking for email...
- cd /
- if success then begin
- get sxm105.zip import\
- if success then begin
- Log Successful file download! Checking for fido...
- cd /asd
- if success then begin
- get sx5chin.* import\
- if success then begin
- Log Successful file download!
- ErrorLevel 0
- else
- if ErrorQuiet then WriteError
- Errorlevel 5
- endif
- else
- if ErrorQuiet then WriteError
- Errorlevel 4
- endif
- else
- if ErrorQuiet then WriteError "sxm105.zip"
- cd ftp:
- ErrorLevel 3
- endif
- else
- if ErrorQuiet then WriteError
- ErrorLevel 2
- endif
- else
- if ErrorQuiet then WriteError
- Errorlevel 1
- endif
- Log Done! ErrorLevel = %ErrorLevel%
- Exit
-